home *** CD-ROM | disk | FTP | other *** search
- Path: noc.netcom.net!usenet
- From: Tarang Deshpande <tarang@willows.com>
- Newsgroups: comp.lang.c
- Subject: Re: Why doesn't this work?
- Date: Thu, 14 Mar 1996 10:00:08 -0800
- Organization: NETCOM Network Operations
- Message-ID: <31485EA8.2B17@willows.com>
- NNTP-Posting-Host: daffy.willows.com
- Mime-Version: 1.0
- Content-Type: text/plain; charset=us-ascii
- Content-Transfer-Encoding: 7bit
- X-Mailer: Mozilla 2.0GoldB1 (Win95; I)
-
- Simple.
-
- Move the line 'count++;' to after 'pass[count]=c;' or better yet
- change the two lines to 'pass[count++]=c;'
-
- Tarang
-